home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / swag / egavga.swg / 0097_Bank Switching.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1994-01-27  |  119 b   |  10 lines

  1.  
  2. Procedure SetBank(b : byte); Assembler; {vesa}
  3. Asm
  4.   mov AX, 4f05h
  5.   xor DX, DX
  6.   mov Dl, b
  7.   Int 10h
  8. END;
  9.  
  10.